Service Bus (1 / 26): In the engineering firm BuildMasters, various project proposals and contract opportunities are managed. Their custom .NET Core application, known as BidMonitor, notifies a message queue whenever there's a change in the status of any proposal or contract. In line with new security standards, all system-to-system interactions must be password-less. What should be the configuration string for the message queue topic in the BidMonitor application for optimal connectivity?
Answer:
This option utilizes Managed Identity for secure, password-less authentication and AMQP for efficient data transfer, meeting the security standards.
SharedAccessKeyName=KeyName;SharedAccessKey=AccessKey
utilizes Shared Access Keys, which require passwords.